Skip to content

fix(deps): update pub non-major dependencies#890

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/pub-minor-patch
Open

fix(deps): update pub non-major dependencies#890
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/pub-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 28, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
build_runner (source) dev_dependencies minor 2.4.152.15.0
built_value (source) dependencies minor 8.10.08.12.6
cupertino_icons (source) dependencies patch 1.0.81.0.9
dart_frog (source) dependencies patch 1.2.01.2.6
dio dependencies minor 5.8.0+15.9.2
drift (source) dependencies minor 2.26.12.33.0
drift_dev (source) dev_dependencies minor 2.26.12.33.0
dynamic_color (source) dependencies minor 1.7.01.8.1
envied dependencies minor 1.1.11.3.5
envied_generator dev_dependencies minor 1.1.11.3.5
flutter_gen_runner (source) dev_dependencies minor 5.10.05.14.1
flutter_hooks (source) dependencies patch 0.21.20.21.3+1
flutter_svg (source) dependencies minor 2.1.02.3.0
freezed dev_dependencies minor 3.0.63.2.5
freezed_annotation dependencies minor 3.0.03.1.0
go_router (source) dependencies patch 15.1.015.1.3
gql_code_builder dependencies minor 0.13.00.15.1
gql_error_link dependencies patch 1.0.0+11.0.1
gql_http_link dependencies minor 1.1.01.2.0
gql_link dependencies minor 1.0.0+11.1.0
gql_transform_link dependencies patch 1.0.01.0.1
image_picker (source) dependencies minor 1.1.21.2.2
json_annotation (source) dependencies minor 4.9.04.12.0
json_serializable (source) dev_dependencies minor 6.9.56.14.0
lottie dependencies patch 3.3.13.3.3
melos (source) dev_dependencies minor 7.0.0-dev.97.8.1
mocktail (source) dev_dependencies patch 1.0.41.0.5
mocktail (source) dependencies patch 1.0.41.0.5
package_info_plus (source) dependencies patch 8.3.08.3.1
retrofit (source) dependencies minor 4.4.24.9.2
retrofit_generator (source) dev_dependencies minor 9.2.09.7.0
shared_preferences (source) dependencies patch 2.5.32.5.5
sqlite3_flutter_libs (source) dependencies minor 0.5.330.6.0+eol
test (source) dev_dependencies minor 1.26.21.31.1
url_launcher (source) dependencies patch 6.3.16.3.2
video_player (source) dependencies minor 2.9.52.11.1
yumemi_lints dev_dependencies minor 4.0.04.4.0

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

dart-lang/build (build_runner)

v2.15.0

Compare Source

  • Remove --low-resources-mode as default memory usage has been improved. If
    you have problems with RAM usage please file an issue.
  • Remove --log-performance and --track-performance. File an issue if you
    have performance measurement needs not covered by the newer --dart-aot-perf.
  • Removed options can still be passed, they will be ignored with a warning.
  • Bug fix: fix crash during logging if an asset path is an invalid URI.
  • Bug fix: with --workspace the global options affecting build order were read
    from the wrong package. They are now read from build.yaml in the workspace
    root, like other global options.
  • Allow analyzer 13.0.0.

v2.14.1

Compare Source

  • Bug fix: fix crash if a package used to belong to a workspace but was removed
    from the workspace leaving a stale workspace.ref file.
  • Bug fix: the watch command now always does one build before exiting due to
    a request from another build_runner process. Fix crashes related to request
    before build start.

v2.14.0

Compare Source

  • Performance: further improvements to management of files for analysis
    for 2x faster incremental builds.
  • Performance: default to AOT compilation for commands other than run. This
    costs more initial startup time but gives faster builds afterwards. Fall back
    to JIT if the compile fails due to use of dart:mirrors. Use the
    --force-jit flag if you want the old default JIT builder compile. Use the
    --force-aot flag to turn off the fallback to JIT compile.
  • Add support for asset: scheme to the --build-filter flag. It is like
    package: but for the whole package, not just lib. For example,
    package:a/b.dart is the same as asset:a/lib/b.dart.
  • Paths specified using --build-filter when using the --workspace flag now
    apply to the current package, not the workspace root. Other packages must
    be referred to using package: or asset: schemes.
  • Add OSC 8 hyperlinks for logged input paths.
  • Better handling of deletions of files during the build: if the file is not
    needed ignore the deletion, if it's needed try to use the cached version,
    as a last resort restart the build.
  • Defer deletions of files by build_runner until the build is complete. Don't
    write files unless the contents changed. These reduce unnecessary work by
    tools that watch the filesystem.
  • --workspace flag is no longer experimental, remove the warning.
  • Add --workspace flag to clean command, use it to clear the cache used for
    a --workspace build.
  • Add new command stop: run dart run build_runner stop to terminate a
    running watch or serve command in the current package or workspace. If
    a build is in progress, the build will complete first.
  • Add locking: build_runner will wait for any already-running command before
    running. If there is an already-running watch or serve command, it will be
    closed after the currently-running build, as if you ran the new
    dart run build_runner stop.
  • Note: the daemon command ignores build_runner stop and ignores the new
    locking as it uses its own locking.
  • Bug fix: small correctness fix in input tracking.
  • Bug fix: fix corner case that caused missing outputs with build_runner serve
    when directories were specified with a port, for example
    build_runner serve web:0. Before the fix, non-optional outputs to cache
    under web would be skipped unless they were used by another build step.
    With the fix, all non-optional outputs under web are built and served.
  • Bug fix: when building with --workspace generate the entrypoint and compiled
    artifacts under the workspace root instead of the current package root.
  • Remove code_builder dependency so builders can use any version of it.

v2.13.1

Compare Source

  • Allow analyzer 11.0.0 and 12.0.0.

v2.13.0

Compare Source

  • Performance: speedup of between 1.4x for small initial builds to 4x for large
    incremental builds. See #​4405 for full
    benchmark results. Optimizations included: faster management of files for
    analysis, re-use syntax errors computation, avoid a throw/catch on "not yet
    generated" source, copy asset graph without a serialization round trip,
    re-use trigger configuration digest.
  • Add --dart-aot-perf flag for profiling on Linux. Use it with --force-aot.
    It runs the builders under the perf profiling tool which writes to
    perf.data.
  • Add --verbose-durations flag that logs durations with greater precision.
  • Improve debugging instructions in README.md.
  • Bug fix: fix line wrapping in build_runner args usage output.

v2.12.2

Compare Source

  • Bug fix: don't crash if applies_builders in build.yaml mentions an
    unknown builder.

v2.12.1

Compare Source

  • Require build_config 1.3.0.

v2.11.1

Compare Source

  • Improve logging on build script build failures, don't repeatedly log an
    identical failure.
  • Bug fix: with --workspace flag, correctly build for sources in the workspace
    root instead of failing with "tried to delete from package not in the build".

v2.11.0

Compare Source

  • Add --workspace flag. Use it with dart run build_runner build or watch
    to build or watch or all packages in the current workspace. It is currently
    experimental and subject to change based on feedback, please add feedback at
    https://redirect.github.com/dart-lang/build/discussions/4349.
  • Bug fix: fix crash in corner case with post process builder, optional builder
    and output used for --output, watch or serve.
  • Bug fix: fix crash in corner case with watch or serve when builders depend
    on generated files in the current build.

v2.10.5

Compare Source

  • Add logging of builder compilation so you can tell how much time is spent
    on the JIT or AOT compile. Explicitly log restarts to recompile builders.
  • Allow analyzer 10.0.0.

v2.10.4

Compare Source

  • Allow analyzer 9.0.0.

v2.10.3

Compare Source

  • Performance: improve scalability with the number of library cycles, making
    builds much faster for some large codebases.
  • Bug fix: fix crash when you run dart run build_runner build in a
    subdirectory of a package.
  • Bug fix: in a workspace, generate for transitive dependencies of the current
    package instead of for all packages in the workspace.

v2.10.2

Compare Source

  • Bug fix: fix issue with webdev failing due to a modification during a build.
  • In "serve" and "watch" modes, retry failed compiles instead of exiting.

v2.10.1

Compare Source

  • Performance: improve findAssets scalability, making it much faster for
    prefix matches in packages with thousands of files or more. One specific use
    case that is now faster is builders that use source_gen shared parts, for
    example built_value and json_serializable.
  • Bug fix: look up triggers in the triggers section of build.yaml using the
    full name. For the case in which the builder name matched the package name,
    the abbreviated name was being used instead.
  • Bug fix: fix incorrect log with build_runner/aot on Windows with JIT.

v2.10.0

Compare Source

  • Add AOT compilation of builders. A future release will AOT compile builders
    automatically, for this release it's behind a flag. AOT compiled builders
    start up faster and have higher throughput, for faster builds overall.
    Builders that use dart:mirrors cannot be AOT compiled.
  • Add force-aot flag to AOT compile builders.
  • Add force-jit flag to force the current default of JIT compiling builders.
  • Add the --dart-jit-vm-arg option. Its values are passed to dart run when
    a build script is started in JIT mode. This allows specifying options to
    attach a debugger to builders.
  • Require analyzer 8.0.0. Remove use of deprecated analyzer members, use
    their recommended and compatible replacements.
  • Internal changes for build_test.

v2.9.0

Compare Source

  • Watch mode: handle builder code and config changes without recompiling or
    exiting.
  • Remove log output about build_runner internals.
  • Print the port that gets picked if you pass 0 for a port number, for example
    with dart run build_runner serve web:0.
  • Improve warnings when an option is specified for an unknown builder.
  • Rewrite bootstrap code to remove use of dart:mirrors.
  • Bug fix: require args 2.5.0.

v2.8.0

Compare Source

  • Make errors more prominent in log output, highlight in red.
  • Remove "deleting declared outputs" warning.
  • Bug fix: fix incorrect display of some "usage" messages.
  • Move code from build_resolvers into build_runner.
  • Move code from build_runner_core into build_runner.
  • Move code from timing into build_runner.
  • Remove unused deps: build_resolvers, build_runner_core, timing.

v2.7.2

Compare Source

  • Use build 4.0.0.

v2.7.1

Compare Source

  • Bug fix: with build_runner serve, special handling of paths containing
    /packages/ was hiding actual folders called packages. Serve the actual
    folders first, before trying the package lookup.
  • Remove undocumented / unused features: lib/build_script_generate.dart,
    bin/graph_inspector.dart, build_runner doctor and
    build_runner generate-build-script commands.
  • Remove deps on pubspec_parse and timing.
  • Use build 3.1.0.

v2.7.0

Compare Source

  • Performance: builders can choose to run only when "triggered". A builder runs
    only if triggered if the option run_only_if_triggered is true. Triggers
    are configured in new a top-level section of build.yaml called triggers.
    See the build_config docs
    for more information.
  • Remove interactive prompts for whether to delete files.
  • Ignore -d flag: always delete files as if -d was passed.
  • Remove --use-polling-watcher flag.
  • Remove build_runner serve mode $graph and $perf handlers.
  • Documentation revamp.
  • Bug fix: delete transitive generated outputs as well as direct generated
    outputs. So, a generated file now gets deleted if its input was a generated
    file that is no longer output.
  • Bug fix: fix crash creating a merged output dir with a file called lib.

v2.6.1

Compare Source

  • Use build 3.0.1.

v2.6.0

Compare Source

  • Remove unused deps: analyzer, build_resolvers, collection, http,
    js, meta, package_config, pool, web, yaml.
  • Remove unused dev_deps: http, package_config, web.
  • Testing: read build configs using AssetReader so they're easier to test.
  • Use build 3.0.0.
  • Use build_resolvers 3.0.0.

v2.5.4

Compare Source

  • Bug fix: fix incremental build when previous build had package: import of
    a missing dep or a missing file.

v2.5.3

Compare Source

  • Bug fix: fix corner case with checked in generated output that could cause
    a crash.
  • Bug fix: during initial build cleanup, really delete files that correspond
    to hidden generated files.

v2.5.2

Compare Source

  • Simplify warnings for outdated analyzer.

v2.5.1

Compare Source

  • Don't log stack traces for subclasses of Exception.
  • Bug fix: don't run builders with multiple outputs once per output.

v2.5.0

Compare Source

User-visible changes:

  • Improved performance for large builds. More performance improvements
    will follow, if your workflow is affected by slow build_runner performance
    then please consider sharing details at
    https://github.com/dart-lang/build/discussions.
  • Improved logging: show what builders are running and, for long-running
    builders, where the time is spent.

Versions:

  • Bump the min SDK to 3.7.0.
  • Use build_test 3.0.0.
  • Use build_runner_core 9.0.0.

Internal changes:

  • Start using `package:build/src/internal.dart'.
  • Refactor MultiPackageAssetReader to internal AssetFinder.
  • FinalizedReader no longer implements AssetReader.
  • Refactor CachingAssetReader to FilesystemCache.
  • Refactor FileBasedAssetReader and FileBasedAssetWriter to ReaderWriter.
  • Remove OnDeleteWriter, add functionality to ReaderWriter.
  • Add NodeType to AssetNode, remove subtypes. Make mutations explicit.
  • Use built_value for AssetNode and related types.
  • Add details of what changed and what is built to --verbose logging.
  • Compute outputs as needed instead of storing them in the asset graph.
  • Refactor invalidation to track current build progress in Build instead of
    in the asset graph.
  • Remove completeBuild from RunnerAssetWriter as it's no longer needed.
google/built_value.dart (built_value)

v8.12.6

Compare Source

  • Require analyzer 13.0.0.

v8.12.5

Compare Source

  • Allow analyzer 11.0.0 and analyzer 12.0.0.

v8.12.4

Compare Source

  • Reduce use of dynamic calls in generated operator== when there are
    functions: only use dynamic calls if the class also has type parameters.

v8.12.3

Compare Source

  • Require analyzer ^10.0.0, stop using removed and deprecated methods from
    earlier versions.

v8.12.2

Compare Source

  • Allow analyzer 10.0.0.

v8.12.1

  • Allow analyzer 9.0.0.

v8.12.0

  • Enable build_runner 2.7.0 "triggers" optimization.
  • built_value will now only run in libraries that directly import
    package:built_value/built_value.dart or use an annotation called
    @SerializersFor. Other files will be quickly skipped and show in
    build_runner output as "not triggered" or "skipped".
  • If you need to run built_value on other source files, see
    https://pub.dev/packages/build_config#triggers for how to configure your own
    additional triggers for built_value.

v8.11.2

  • Require analyzer ^8.0.0.
  • Allow built_value_generator to use build 4.0.0.
  • Allow built_value_generator to use source_gen 4.0.0.

v8.11.1

  • Allow built_value_generator to use analyzer 8.0.0.

v8.11.0

Compare Source

  • Use build ^3.0.0.
  • Use source_gen ^3.0.0.

v8.10.1

Compare Source

  • Add mutable collection serializers so built_value can serialize List,
    Set and Map. It's still recommended to avoid mutable collections inside
    value types as they break hashing, comparison and caching; the intended use
    case is that you have one top level mutable collection of your immutable
    value types.
flutter/packages (cupertino_icons)

v1.0.9

Compare Source

  • Removes empty Dart file.
  • Updates minimum supported SDK version to Flutter 3.35/Dart 3.9.
dart-frog-dev/dart_frog (dart_frog)

v1.2.6

Compare Source

  • fix: revert Expando perf optimization (#​1908)
    • perf optimization caused a regression when calling request.read multiple times across a middleware/handler gap

v1.2.5

Compare Source

  • feat: add defaultDocument to createStaticFileHandler (#​1901)

v1.2.4

Compare Source

  • perf: optimize Request.read (#​1410)
  • docs: update discord server link (#​1862)
  • chore: minor pubspec.yaml adjustments (#​1849)

v1.2.3

Compare Source

  • refactor: standardize project-wide analysis options (#​1842)
  • feat: expose captured request params (#​1818)

v1.2.2

Compare Source

  • refactor: upgrade analysis options (#​1798)
  • docs: update all repository references (#​1791)

v1.2.1

Compare Source

  • fix: add default handler for disallowed http methods (#​1727)
cfug/dio (dio)

v5.9.2: dio 5.9.2

Compare Source

What's new
  • Fixes kIsWeb across different Flutter SDKs.
  • Provides httpVersion in Response.extra when using IOHttpClientAdapter.

v5.9.1: dio 5.9.1

Compare Source

What's new
  • Add requestUrl and responseUrl parameters to LogInterceptor for more precise control over URL logging.

v5.9.0: dio 5.9.0

Compare Source

What's new

  • Do not allow updating the error field after a cancel token has canceled.
  • Allow passing an initial interceptors list to the constructor of Interceptors.
  • Use package:mime to help determine the content-type of MultipartFile base on the provided filename.
simolus3/drift (drift)

v2.33.0: Drift 2.33.0

Compare Source

  • Add length extension for blob expressions.
  • Add SqlDialect.duckdb for use with the drift_duckdb package.
  • Drift files: Support SQLite version 3.53.0.

v2.32.1: Drift 2.32.1

Compare Source

  • DevTools extension: Make error messages selectable.
  • For view columns referencing table columns as an alias, we now copy nullability and type converters from the source column (#​3765).
  • Fix parsing references() with analyzer 10.2.0 and later.
  • Support analyzer versions >=10.0.0 <13.0.0.

v2.32.0: Drift 2.32.0

Compare Source

  • Potentially breaking change Migrate to version 3.x of the sqlite3 package.
    To upgrade:
    • For the web, update sqlite3.wasm from a 3.x release.
    • If you've previously used sqlcipher_flutter_libs, see this for encryption support and note that SQLite3MultipleCiphers requires additional pragmas to be compatible with SQLCipher databases.
  • serializableConnection(), json1 and TableMigration are no longer marked as experimental.
  • Improve performance of mapping large result sets through joined select statements.
  • In drift files, imports and statements can now be parsed from SQL line comments. This makes drift files easier to use from some SQL editors:
-- import 'tables.drift';

-- deleteById:
DELETE FROM todos WHERE id = :id;

-- allTodos:
SELECT * FROM todos;

v2.31.0: Drift 2.31.0

Compare Source

  • In step-by-step migrations, automatically throw an error if a database downgrade is attempted. This has always been unsupported, but could lead to the database silently having a wrong user_version.
  • Fix JSON serialization for views referencing a nullable wrapper of a non-nullable column with a type converter attached to it.
sqlparser version 0.43.1
  • Support parsing DROP, VACUUM, REINDEX, ATTACH, DETACH, SAVEPOINT, RELEASE, ROLLBACK, ANALYZE, PRAGMA and ALTER TABLE statements.
  • Add SchemaBuffer class to apply ALTER TABLE and DROP statements to CREATE statements.

v2.30.1: Drift 2.30.1

Compare Source

drift 2.30.1

  • Web: Fix databases being moved from IndexedDB to OPFS even if moveExistingIndexedDbToOpfs is disabled.

drift_dev 2.30.1

  • make_migrations: Don't generate schema test helpers when --no-test is set.
  • Generate managers entrypoint for @DriftAccessors as well.
  • Add ValidationOptions parameter to testWithDataIntegrity.

sqlparser 0.43.0

  • Allow parsing SQL from FileSpans, which is convenient for SQL embedded as text in outer structures.

v2.30.0: Drift 2.30.0

Compare Source

Drift

  • Add rightOuterJoin and fullOuterJoin.
  • Wasm: Add the WasmProbeResult.moveFromIndexedDBToOpfs() method and the moveExistingIndexedDbToOpfs parameter on WasmDatabase.open. They can be used to move an existing database stored in IndexedDB to OPFS.
drift_flutter
  • Add isolateSetup parameter to DriftNativeOptions to setup isolates spawned to host database connections.

Generator

  • Schema export: Always export generated SQL statements as a reference.
  • Schema export: Always use temporary file instead of data URI.
  • Support analyzer versions 9.x.
  • Support dothand syntax when analyzing Dart sources.
  • Analysis: Support features added in SQLite version 3.51.0

v2.29.0: Drift 2.29.0

Compare Source

Query builder
  • Allow specifying ordering for columns in @TableIndex annotation.
  • Add DelegatedDatabase.externalExecutor, allowing transactions started externally to be used with drift.
  • Add Batch.insertFromSelect to insert rows from a select statement in a batch.
Generator
  • Fix invalid schema code for views.
  • Add the known_tables option. It allows defining external tables assumed to be available without including them in the drift-managed schema.
  • Fix unresolved references in CTEs resolving against the scope of the main query.
  • Static analysis support for the PowerSync SQLite extension.
Tools
  • Devtools extension: Support exporting databases.
  • Make-migrations: Add --no-test option to disable generating tests.
  • Internal: The drift website is now built with jaspr_content.

v2.28.2

Compare Source

v2.28.1

Compare Source

v2.28.0: Drift 2.28.0

Compare Source

drift
  • Query delegates: Support nested transactions in SupportedTransactionDelegate.
  • Add WasmProbeResult.exportDatabase to export an existing web database as a Uint8List.
  • Fix drift server isolates leaking when their only client isolate exits without closing the database.
drift_dev
  • Include preamble from drift build options in generated schema code.
  • Fix generated code not copying function expressions correctly.
sqlparser
  • Support new features introduced in SQLite version 3.50.0.

v2.27.0: Drift 2.27.0

Compare Source

  • Allow passing sqlite3 callback to NativeDatabase to customize how SQLite bindings are obtained.
  • Fix generating versioned schema code for columns referencing other columns in generatedAs expressions.
  • Use proper impport statements when generating schema code.
  • Schema validation: Allow ignoring column constraints.
  • Devtools extension: Update displayed data automatically when it changes.
material-foundation/flutter-packages (dynamic_color)

v1.8.1

Fixed
  • Revert moving flutter_test to dev_dependencies
petercinibulk/envied (envied)

v1.3.5

Compare Source

Changes

Packages with breaking changes:

  • There are no breaking changes in this release.
Packages with other changes:
Packages with other changes:
envied - v1.3.5
  • FEAT: add pathOverrides support for Envied annotations (#​183)
  • FEAT: add .env inheritance support in Envied and EnviedGenerator (#​190)
  • CHORE: add support for analyzer 13.0.0 (#​187)
envied_generator - v1.3.5
  • FEAT: add pathOverrides support for Envied annotations (#​183)
  • FEAT: add .env inheritance support in Envied and EnviedGenerator (#​190)
  • CHORE: add support for analyzer 13.0.0 (#​187)

v1.3.4

Compare Source

Changes

Packages with breaking changes:

  • There are no breaking changes in this release.
Packages with other changes:
envied - v1.3.4
  • CHORE: add support for analyzer 12.0.0 (#​179)
envied_generator - v1.3.4
  • CHORE: add support for analyzer 12.0.0 (#​179)

v1.3.3

Compare Source

Changes

Packages with breaking changes:

  • There are no breaking changes in this release.
Packages with other changes:
envied - v1.3.3
  • CHORE: add support for analyzer 10.0.0 (#​177)
envied_generator - v1.3.3
  • CHORE: add support for analyzer 10.0.0 (#​177)

v1.3.2

Compare Source

Changes

Packages with breaking changes:

  • There are no breaking changes in this release.
Packages with other changes:
envied - v1.3.2
  • CHORE: add support for analyzer 9.0.0 (#​172)
envied_generator - v1.3.2
  • CHORE: add support for analyzer 9.0.0 (#​172)

v1.3.1

Compare Source

Changes

Packages with breaking changes:

  • There are no breaking changes in this release.
Packages with other changes:
envied - v1.3.1
  • CHORE: remove dart:io import
envied_generator - v1.3.1
  • CHORE: require envied version ^1.3.0

v1.3.0

Compare Source

Changes

Packages with breaking changes:

  • There are no breaking changes in this release.
Packages with other changes:
envied - v1.3.0
  • CHORE: broaden version constraints for build and source_gen dependencies
envied_generator - v1.3.0
  • CHORE: broaden version constraints for build and source_gen dependencies

v1.2.1

Compare Source

Changes

Packages with breaking changes:

  • There are no breaking changes in this release.
Packages with other changes:

envied - v1.2.1
  • CHORE: update analyzer dependency to >=7.4.0 <9.0.0
envied_generator - v1.2.1
  • CHORE: update analyzer dependency to >=7.4.0 <9.0.0

v1.2.0

Compare Source

Changes

Packages with breaking changes:

  • There are no breaking changes in this release.
Packages with other changes:

envied - v1.2.0
  • CHORE: migrate to analyzer Element2 model (#​151)
envied_generator - v1.2.0
  • CHORE: migrate to analyzer Element2 model (#​151)
FlutterGen/flutter_gen (flutter_gen_runner)

v5.14.1

Compare Source

v5.14.0

Compare Source

v5.13.0+1: v5.13.0+1

Compare Source

Development

  • Fixes version conflict between packages.

v5.13.0

Compare Source

Development

v5.12.0

Compare Source

Development

v5.11.0

Compare Source

Feature

Development

rrousselGit/flutter_hooks (flutter_hooks)

v0.21.3+1

Compare Source

Updated Discord link

v0.21.3

Compare Source

Updated Discord link

flutter/packages (flutter_svg)

v2.3.0

Compare Source

  • Adds an imageBuilder property to SvgPicture for wrapping the loaded SVG
    widget.

v2.2.4

Compare Source

  • Updates README with example to scale SVG without losing quality
  • Updates minimum supported SDK version to Flutter 3.35/Dart 3.9.

v2.2.3

Compare Source

  • Replaces use of deprecated Color.value.
  • Updates minimum supported SDK version to Flutter 3.32/Dart 3.8.

v2.2.2

Compare Source

  • Fixes typo of allowDrawingOutsideViewBox in doc comments.

v2.2.1

Compare Source

  • Fixes message buffer access in SvgAssetLoader.
  • Updates minimum supported SDK version to Flutter 3.29/Dart 3.7.

v2.2.0

Compare Source

  • Exposes renderingStrategy in SvgPicture constructors.
  • Updates minimum supported SDK version to Flutter 3.27/Dart 3.6.
rrousselGit/freezed (freezed)

v3.2.5

Compare Source

v3.2.4

Compare Source

v3.2.3

Compare Source

v3.2.2

Compare Source

v3.2.1

Compare Source

v3.2.0

Compare Source

v3.1.0

Compare Source

flutter/packages (go_router)

v15.1.3

Compare Source

  • Updates minimum supported SDK version to Flutter 3.27/Dart 3.6.
  • Fixes typo in API docs.

v15.1.2

Compare Source

  • Fixes focus request propagation from GoRouter to Navigator by properly handling the requestFocus parameter.

v15.1.1

Compare Source

  • Adds missing caseSensitive to GoRouteData.$route.
gql-dart/gql (gql_code_builder)

v0.15.1

Changes

Packages with breaking changes:

Packages with other changes:

Packages with dependency updates only:

Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.

  • gql_code_builder_serializers - v0.1.0+1
  • gql_transform_link - v1.0.1
  • gql_error_link - v1.0.1

gql_dedupe_link - v4.0.0
  • FEAT(dedupe_link): Add shouldDedupe option (#​429).
  • BREAKING FIX(gql_dedupe_link): do not dedupe mutations by default (#​489).
gql_dio_link - v2.0.0
  • FIX: use typedefs instead of subclasses for base contexts for http bases links (#​369).
  • FIX: broken json tests.
  • FIX: remove duplicated content-type headers added by link.
  • FEAT(gql_dio_link): migrate to dio 5.2.0: use DioException instead of deprecated (typedef) DioError, fix serializableDioError using new copyWith methods on RequestOptions ([#​406](https://redirect.git

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Tokyo)

  • Branch creation
    • At 07:00 AM and 04:00 PM (* 7,16 * * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label May 28, 2025
@renovate renovate Bot requested a review from a team as a code owner May 28, 2025 07:25
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label May 28, 2025
@renovate renovate Bot enabled auto-merge May 28, 2025 07:25
@renovate

renovate Bot commented May 28, 2025

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pubspec.lock
Command failed: dart pub upgrade melos yumemi_lints
Because feature_settings requires the Flutter SDK, version solving failed.

Flutter users should use `flutter pub` instead of `dart pub`.

@ishinova-actions

Copy link
Copy Markdown
Contributor

Commands

Command Description
/catalog この Pull Request の Catalog を Firebase Hosting にデプロイ
/gen コード生成コマンドを実行

@ishinova-actions ishinova-actions Bot added @core/common core common package @core/data core data package @core/database core database package @core/datastore core datastore package @core/designsystem core designsystem package @core/domain core domain package @core/model core model package @core/network core network package @core/testing core testing package @feature/home feature home package @app/backend Backend development @app/catalog Catalog development @feature/auth feature auth package @feature/quest feature quest package @feature/settings feature settings package @core/ui core ui package @core/analytics core analytics package @app/mobile mobile app package @core/analytics_firebase core analytics_firebase package @core/authenticator core authenticator package @feature/feed feature feed package @core/network_model core network_model package labels May 28, 2025
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch 2 times, most recently from 897290d to 094514d Compare May 28, 2025 13:06
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch 6 times, most recently from de245dd to 9cf2b19 Compare June 23, 2025 11:55
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch 2 times, most recently from f67b20a to d51705e Compare June 30, 2025 03:16
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch 2 times, most recently from e9dca55 to a6d6e42 Compare July 2, 2025 22:31
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch 5 times, most recently from f80eb67 to 1ec7668 Compare July 16, 2025 03:09
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch 6 times, most recently from 60d1820 to 45eb1e8 Compare July 22, 2025 04:50
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch from 45eb1e8 to 979662a Compare July 27, 2025 18:28
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch 5 times, most recently from 6c16964 to 20866a8 Compare August 12, 2025 18:03
@renovate renovate Bot force-pushed the renovate/pub-minor-patch branch 2 times, most recently from bc1ddd5 to d193906 Compare August 15, 2025 13:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

@app/backend Backend development @app/catalog Catalog development @app/mobile mobile app package @core/analytics_firebase core analytics_firebase package @core/analytics core analytics package @core/authenticator core authenticator package @core/common core common package @core/data core data package @core/database core database package @core/datastore core datastore package @core/designsystem core designsystem package @core/domain core domain package @core/model core model package @core/network_model core network_model package @core/network core network package @core/testing core testing package @core/ui core ui package dependencies Pull requests that update a dependency file @feature/auth feature auth package @feature/feed feature feed package @feature/home feature home package @feature/quest feature quest package @feature/settings feature settings package

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants